home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / djgpp / include / sys / param.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-11  |  204 b   |  16 lines

  1.  
  2. #ifndef _PARAM_H_
  3. #define _PARAM_H_
  4.  
  5. #define MAXPATHLEN 80
  6. #define MAXHOSTNAMELEN 64
  7.  
  8. #ifndef NULL
  9. #ifndef __WATCOMC__
  10. #define NULL ((void *) 0)
  11. #else
  12. #define NULL 0
  13. #endif
  14. #endif
  15. #endif
  16.